Routines (alphabetical) > Routines: T > THREED Procedure

THREED Procedure

Syntax | Arguments | Keywords | Examples | Version History | See Also

The THREED procedure plots a 2-D array as a pseudo 3-D plot. The orientation of the data is fixed. This routine is written in the IDL language. Its source code can be found in the file threed.pro in the lib subdirectory of the IDL distribution.

Syntax

THREED, A [, Sp] [, TITLE=string] [, XTITLE=string] [, YTITLE=string]

Arguments

A

The two-dimensional array to plot.

Sp

The spacing between plot lines. If Sp is omitted, the spacing is set to: (MAX(A)-MIN(A))/ROWS. If Sp is negative, hidden lines are not removed.

Keywords

TITLE

Set this keyword to the main plot title.

XTITLE

Set this keyword to the X axis title.

YTITLE

Set this keyword to the Y axis title.

Examples

; Create a 2-D dataset:
A = -SHIFT(DIST(30), 15, 15)
; Make a THREED plot:
THREED, A
; Compare to SURFACE:
SURFACE, A

Version History

Original

Introduced

See Also

SURFACE Procedure